home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / fscompr / changelo < prev    next >
Text File  |  1998-06-16  |  11KB  |  245 lines

  1.  
  2. (December 1997)
  3. Added CompFile.c to simplify the interface with Visual Basic
  4. Added DskSpace.c (lets you know the available space on a disk drive)
  5. Changed name to FSZlib.dll to avoid conflicts
  6.  
  7.         ChangeLog file for zlib
  8.  
  9. Changes in 1.0.4 (24 Jul 96)
  10. - In very rare conditions, deflate(s, Z_FINISH) could fail to produce an EOF
  11.   bit, so the decompressor could decompress all the correct data but went
  12.   on to attempt decompressing extra garbage data. This affected minigzip too.
  13. - zlibVersion and gzerror return const char* (needed for DLL)
  14. - port to RISCOS (no fdopen, no multiple dots, no unlink, no fileno)
  15. - use z_error only for DEBUG (avoid problem with DLLs)
  16.  
  17. Changes in 1.0.3 (2 Jul 96)
  18. - use z_streamp instead of z_stream *, which is now a far pointer in MSDOS
  19.   small and medium models; this makes the library incompatible with previous
  20.   versions for these models. (No effect in large model or on other systems.)
  21. - return OK instead of BUF_ERROR if previous deflate call returned with
  22.   avail_out as zero but there is nothing to do
  23. - added memcmp for non STDC compilers
  24. - define NO_DUMMY_DECL for more Mac compilers (.h files merged incorrectly)
  25. - define __32BIT__ if __386__ or i386 is defined (pb. with Watcom and SCO)
  26. - better check for 16-bit mode MSC (avoids problem with Symantec)
  27.  
  28. Changes in 1.0.2 (23 May 96)
  29. - added Windows DLL support
  30. - added a function zlibVersion (for the DLL support)
  31. - fixed declarations using Bytef in infutil.c (pb with MSDOS medium model)
  32. - Bytef is define's instead of typedef'd only for Borland C
  33. - avoid reading uninitialized memory in example.c
  34. - mention in README that the zlib format is now RFC1950
  35. - updated Makefile.dj2
  36. - added algorithm.doc
  37.  
  38. Changes in 1.0.1 (20 May 96) [1.0 skipped to avoid confusion]
  39. - fix array overlay in deflate.c which sometimes caused bad compressed data
  40. - fix inflate bug with empty stored block
  41. - fix MSDOS medium model which was broken in 0.99
  42. - fix deflateParams() which could generated bad compressed data.
  43. - Bytef is define'd instead of typedef'ed (work around Borland bug)
  44. - added an INDEX file
  45. - new makefiles for DJGPP (Makefile.dj2), 32-bit Borland (Makefile.b32),
  46.   Watcom (Makefile.wat), Amiga SAS/C (Makefile.sas)
  47. - speed up adler32 for modern machines without auto-increment
  48. - added -ansi for IRIX in configure
  49. - static_init_done in trees.c is an int
  50. - define unlink as delete for VMS
  51. - fix configure for QNX
  52. - add configure branch for SCO and HPUX
  53. - avoid many warnings (unused variables, dead assignments, etc...)
  54. - no fdopen for BeOS
  55. - fix the Watcom fix for 32 bit mode (define FAR as empty)
  56. - removed redefinition of Byte for MKWERKS
  57. - work around an MWKERKS bug (incorrect merge of all .h files)
  58.  
  59. Changes in 0.99 (27 Jan 96)
  60. - allow preset dictionary shared between compressor and decompressor
  61. - allow compression level 0 (no compression)
  62. - add deflateParams in zlib.h: allow dynamic change of compression level
  63.   and compression strategy.
  64. - test large buffers and deflateParams in example.c
  65. - add optional "configure" to build zlib as a shared library
  66. - suppress Makefile.qnx, use configure instead
  67. - fixed deflate for 64-bit systems (detected on Cray)
  68. - fixed inflate_blocks for 64-bit systems (detected on Alpha)
  69. - declare Z_DEFLATED in zlib.h (possible parameter for deflateInit2)
  70. - always return Z_BUF_ERROR when deflate() has nothing to do
  71. - deflateInit and inflateInit are now macros to allow version checking
  72. - prefix all global functions and types with z_ with -DZ_PREFIX
  73. - make falloc completely reentrant (inftrees.c)
  74. - fixed very unlikely race condition in ct_static_init
  75. - free in reverse order of allocation to help memory manager
  76. - use zlib-1.0/* instead of zlib/* inside the tar.gz
  77. - make zlib warning-free with "gcc -O3 -Wall -Wwrite-strings -Wpointer-arith
  78.   -Wconversion -Wstrict-prototypes -Wmissing-prototypes"
  79. - allow gzread on concatenated .gz files
  80. - deflateEnd now returns Z_DATA_ERROR if it was premature
  81. - deflate is finally (?) fully deterministic (no matches beyond end of input)
  82. - Document Z_SYNC_FLUSH
  83. - add uninstall in Makefile
  84. - Check for __cpluplus in zlib.h
  85. - Better test in ct_align for partial flush
  86. - avoid harmless warnings for Borland C++
  87. - initialize hash_head in deflate.c
  88. - avoid warning on fdopen (gzio.c) for HP cc -Aa
  89. - include stdlib.h for STDC compilers
  90. - include errno.h for Cray
  91. - ignore error if ranlib doesn't exist
  92. - call ranlib twice for NeXTSTEP
  93. - use exec_prefix instead of prefix for libz.a
  94. - renamed ct_* as _tr_* to avoid conflict with applications
  95. - clear z->msg in inflateInit2 before any error return
  96. - initialize opaque in example.c, gzio.c, deflate.c and inflate.c
  97. - fixed typo in zconf.h (_GNUC__ => __GNUC__)
  98. - check for WIN32 in zconf.h and zutil.c (avoid farmalloc in 32-bit mode)
  99. - fix typo in Make_vms.com (f$trnlnm -> f$getsyi)
  100. - in fcalloc, normalize pointer if size > 65520 bytes
  101. - don't use special fcalloc for 32 bit Borland C++
  102. - use STDC instead of __GO32__ to avoid redeclaring exit, calloc, etc...
  103. - use Z_BINARY instead of BINARY
  104. - document that gzclose after gzdopen will close the file
  105. - allow "a" as mode in gzopen.
  106. - fix error checking in gzread
  107. - allow skipping .gz extra-field on pipes
  108. - added reference to Perl interface in README
  109. - put the crc table in FAR data (I dislike more and more the medium model :)
  110. - added get_crc_table
  111. - added a dimension to all arrays (Borland C can't count).
  112. - workaround Borland C bug in declaration of inflate_codes_new & inflate_fast
  113. - guard against multiple inclusion of *.h (for precompiled header on Mac)
  114. - Watcom C pretends to be Microsoft C small model even in 32 bit mode.
  115. - don't use unsized arrays to avoid silly warnings by Visual C++:
  116.      warning C4746: 'inflate_mask' : unsized array treated as  '__far'
  117.      (what's wrong with far data in far model?).
  118. - define enum out of inflate_blocks_state to allow compilation with C++
  119.  
  120. Changes in 0.95 (16 Aug 95)
  121. - fix MSDOS small and medium model (now easier to adapt to any compiler)
  122. - inlined send_bits
  123. - fix the final (:-) bug for deflate with flush (output was correct but
  124.   not completely flushed in rare occasions).
  125. - default window size is same for compression and decompression
  126.   (it's now sufficient to set MAX_WBITS in zconf.h).
  127. - voidp -> voidpf and voidnp -> voidp (for consistency with other
  128.   typedefs and because voidnp was not near in large model).
  129.  
  130. Changes in 0.94 (13 Aug 95)
  131. - support MSDOS medium model
  132. - fix deflate with flush (could sometimes generate bad output)
  133. - fix deflateReset (zlib header was incorrectly suppressed)
  134. - added support for VMS
  135. - allow a compression level in gzopen()
  136. - gzflush now calls fflush
  137. - For deflate with flush, flush even if no more input is provided.
  138. - rename libgz.a as libz.a
  139. - avoid complex expression in infcodes.c triggering Turbo C bug
  140. - work around a problem with gcc on Alpha (in INSERT_STRING)
  141. - don't use inline functions (problem with some gcc versions)
  142. - allow renaming of Byte, uInt, etc... with #define.
  143. - avoid warning about (unused) pointer before start of array in deflate.c
  144. - avoid various warnings in gzio.c, example.c, infblock.c, adler32.c, zutil.c
  145. - avoid reserved word 'new' in trees.c
  146.  
  147. Changes in 0.93 (25 June 95)
  148. - temporarily disable inline functions
  149. - make deflate deterministic
  150. - give enough lookahead for PARTIAL_FLUSH
  151. - Set binary mode for stdin/stdout in minigzip.c for OS/2
  152. - don't even use signed char in inflate (not portable enough)
  153. - fix inflate memory leak for segmented architectures
  154.  
  155. Changes in 0.92 (3 May 95)
  156. - don't assume that char is signed (problem on SGI)
  157. - Clear bit buffer when starting a stored block
  158. - no memcpy on Pyramid
  159. - suppressed inftest.c
  160. - optimized fill_window, put longest_match inline for gcc
  161. - optimized inflate on stored blocks.
  162. - untabify all sources to simplify patches
  163.  
  164. Changes in 0.91 (2 May 95)
  165. - Default MEM_LEVEL is 8 (not 9 for Unix) as documented in zlib.h
  166. - Document the memory requirements in zconf.h
  167. - added "make install"
  168. - fix sync search logic in inflateSync
  169. - deflate(Z_FULL_FLUSH) now works even if output buffer too